home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 43 / Amiga Format CD43 (1999)(Future Publishing)(GB)(Track 1 of 2)[!][issue 1999-09].iso / -serious- / archivers / xpk / xpk_source / xpkmaster / version.h < prev    next >
C/C++ Source or Header  |  1999-06-14  |  3KB  |  70 lines

  1. #ifndef XPKMASTER_VERSION_C
  2. #define XPKMASTER_VERSION_C
  3.  
  4. /* Programmheader
  5.  
  6.     Name:        version.c
  7.     Main:        xpkmaster
  8.     Versionstring:    $VER: version.c 5.1 (12.03.1999)
  9.     Author:        SDI
  10.     Distribution:    Freeware
  11.     Description:    the xpk packing library system version data
  12.  
  13.  3.10  28.10.96 : first real version
  14.  3.11  25.11.95 : recompiled with SAS 6.57
  15.  4.0   29.12.96 : added some new functions, OS2.0 only, corrected error in
  16.     locale handling (Ooops - (A2) instead of A2 :-)
  17.  4.1   11.01.97 : hopefully fixed buffer overworking bug
  18.  4.2   30.01.97 : mem bug still was not completely fixed
  19.  4.3   01.03.97 : changed semaphore structure
  20.  4.4   09.03.97 : added preferences stuff
  21.  4.5   23.03.97 : fixed Enforcer Hits
  22.  4.6   28.03.97 : fixed prefs stuff
  23.  4.7   31.03.97 : changed XpkQuery and Password stuff
  24.  4.8   02.04.97 : changed a lot, removed some stuff
  25.  4.9   03.04.97 : preferences buffers now via hookread and not direct
  26.  4.10  04.04.97 : minor fixes
  27.  4.11  10.04.97 : Password request now restores FirstScreen
  28.  4.12  28.04.97 : fixed mem-corrupt bug and changed progress time calc
  29.  4.13  11.05.97 : fixed reported errors in Expunge code
  30.  4.14  06.06.97 : added DEBUG output
  31.  4.15  18.08.97 : changed RecogFunc interface a bit
  32.  4.16  21.08.97 : did a big mistake in version 4.15 (USER mode did not work)
  33.  4.17  15.10.97 : PassRequest now uses timer.device
  34.  4.18  07.11.97 : TimeOut of 0 now means again no timeout
  35.  4.19  19.12.97 : added xfdmaster support, code cleanup and changes
  36.  4.20  27.12.97 : fixed bug in Autopassword and added title line to passreq
  37.  4.21  01.01.98 : USER information is a bit better now
  38.  4.22  09.01.98 : added ability to pass decrunch keys, PassRequest uses
  39.     gadtools now and show stars
  40.  4.23  18.01.98 : added 2 new password flags
  41.  4.24  21.01.98 : added password verification
  42.  4.25  24.01.98 : fixed xfdmaster support a bit, removed PP support
  43.  4.26  27.01.98 : brings better errors in USER mode
  44.  4.27  17.02.98 : fixed pack problem with long-files
  45.  4.28  21.02.98 : inserted C library startup header
  46.  4.29  24.02.98 : fixed long files bug finally, xm_Next is cleared for
  47.      queries now.
  48.  4.30  03.03.98 : removed Enforcer hit in XpkQuery function
  49.  4.31  26.03.98 : some code optimizations
  50.  4.32  29.04.98 : bugfix in XpkQuery
  51.  4.33  09.05.98 : bug fixes, now uses cached SysBase
  52.  4.34  26.08.98 : fixed problem, when using XpkWrite directly
  53.  5.0   30.10.98 : added Seek function, xfib->xf_UCur and xfib->xf_CCur
  54.     showed always data of next chunk (fixed)
  55.  5.1   12.03.99 : fixed progress report for large files
  56. */
  57.  
  58. #define VERSION   5
  59. #define REVISION  1
  60. #define LIBNAME  "xpkmaster.library"
  61. #ifdef DEBUG
  62. #define ADDTXT    " debug version"
  63. #else
  64. #define ADDTXT
  65. #endif
  66.  
  67. #define IDSTRING "xpkmaster 5.1 (12.03.1999)" ADDTXT "\r\n"
  68.  
  69. #endif /* XPKMASTER_VERSION_C */
  70.